home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / mui / bcc_src.lha / Parser / BCC_BUG / View.bh < prev   
Encoding:
Text File  |  1998-01-13  |  516 b   |  30 lines

  1. #define MUIV_View_Mode_Face        0
  2. #define MUIV_View_Mode_Top        1
  3. #define MUIV_View_Mode_Left        2
  4. #define MUIV_View_Mode_Persp    3
  5.  
  6. Class View:MUIC_Area
  7. {
  8.     short Mode;
  9.     float X,Y,Z;
  10.     float Zoom,GridSize;
  11.     float FactorX,FactorY;
  12.     model_t *Model;
  13.  
  14.     Attribute Mode:I;
  15.     Attribute X:ISG;
  16.     Attribute Y:ISG;
  17.     Attribute Z:ISG;
  18.     Attribute Zoom:ISG;
  19.     Attribute GridSize:ISG;
  20.     Attribute Model:ISG;
  21.  
  22.     Method ScrollXPos();
  23.     Method ScrollXNeg();
  24.     Method ScrollYPos();
  25.     Method ScrollYNeg();
  26.     Method ScrollZPos();
  27.     Method ScrollZNeg();
  28. };
  29.  
  30.